home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2005 June
/
ccd0605.iso
/
Software
/
Freeware
/
Programare
/
highlight
/
highlight-W32GUI-2.2-10b-Setup.exe
/
{app}
/
src
/
xmlgenerator.h
< prev
next >
Wrap
C/C++ Source or Header
|
2005-03-20
|
3KB
|
92 lines
/***************************************************************************
xmlcode.h - description
-------------------
begin : Do 20.01.2005
copyright : (C) 2005 by Andre Simon
email : andre.simon1@gmx.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef XMLGENERATOR_H
#define XMLGENERATOR_H
#include <string>
#include <sstream>
#include <iostream>
#include "codegenerator.h"
#include "version.h"
namespace highlight {
/**
\brief This class generates XML.
It contains information about the resulting document structure (document
header and footer), the colour system, white space handling and text
formatting attributes.
* @author Andre Simon
*/
class XmlGenerator : public highlight::CodeGenerator
{
public:
/** Constructor
\param colourTheme Name of Colour theme to use
\param enc encoding name
\param omitEnc switch to omit encoding information
*/
XmlGenerator( const string &colourTheme,const string &enc, bool omitEnc=false);
XmlGenerator();
~XmlGenerator();
/** prints document header
\param title Title of the document
*/
string getHeader(const string & title);
/** Prints document footer*/
string getFooter();
/** Prints document body*/
void printBody();
private:
string styleDefinitionCache, encoding;
bool omitEncoding;
string getStyleDefinition();
string formatStyleAttributes(const string &, const ElementStyle &);
/** \return escaped character*/
virtual string maskCharacter(unsigned char );
// string getNewLine();
string getOpenTag(const string& );
string getCloseTag(const string& );
string getMatchingOpenTag(unsigned int styleID);
string getMatchingCloseTag(unsigned int styleID);
};
}
#endif